This interface implements functionality required to synchronize files with the Meridian Enterprise database. As opposed to IAMEdmItemsUIMenu, IAMDocumentUISync can only be used for a single document, not a batch.
Name | Description |
---|---|
Synchronizes properties from file |
|
Synchronizes properties to file |
|
Synchronizes references |
Remarks
IAMDocumentUISync is an interface of AMDocumentUI object.
See Synchronizing properties with document content for an alternative method of synchronizing files.
Example
Private Sub ReadTitleBlock(ByVal dr As AMDocumentRepository, ByVal doc As AMDocument)
Dim docui As New AMDocumentUI
Dim per As IAMEdmUIPersist
Dim sync As IAMDocumentUISync
Set per = docui
docui.Init doc, Nothing
Set sync = docui
sync.ReadTitleBlockFields
...........
End Sub